home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / maypro1a / mdiform1.frm < prev    next >
Text File  |  1998-12-06  |  1KB  |  48 lines

  1. VERSION 5.00
  2. Begin VB.MDIForm MDIForm1 
  3.    AutoShowChildren=   0   'False
  4.    BackColor       =   &H8000000C&
  5.    Caption         =   "MDIForm1"
  6.    ClientHeight    =   3195
  7.    ClientLeft      =   165
  8.    ClientTop       =   735
  9.    ClientWidth     =   4680
  10.    LinkTopic       =   "MDIForm1"
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin Proyecto1.MayProgress MayProgress1 
  13.       Align           =   2  'Align Bottom
  14.       Height          =   375
  15.       Left            =   0
  16.       TabIndex        =   0
  17.       Top             =   2820
  18.       Width           =   4680
  19.       _extentx        =   8255
  20.       _extenty        =   0
  21.    End
  22.    Begin VB.Menu sdfsdfsdf 
  23.       Caption         =   "A±adirProgreso"
  24.    End
  25.    Begin VB.Menu asfsdfsdfsdf 
  26.       Caption         =   "QuitarProgreso"
  27.    End
  28. End
  29. Attribute VB_Name = "MDIForm1"
  30. Attribute VB_GlobalNameSpace = False
  31. Attribute VB_Creatable = False
  32. Attribute VB_PredeclaredId = True
  33. Attribute VB_Exposed = False
  34. Option Explicit
  35.  
  36. Private Sub asfsdfsdfsdf_Click()
  37. Dim s As String
  38. s = InputBox("Progreso:")
  39. If Not IsNumeric(s) Then Exit Sub
  40. MayProgress1.TerminarProgreso CLng(s)
  41.  
  42. End Sub
  43.  
  44. Private Sub sdfsdfsdf_Click()
  45. Call MayProgress1.MostrarProgreso("", 100)
  46.  
  47. End Sub
  48.